table.FIELD_BLANK Function

Syntax

V Field_Blank(C fieldname)

Arguments

fieldname

The name of a field.

Description

Places a blank value in the field specified.

Discussion

The <TBL>.FIELD_BLANK() method erases the contents of a field.

Set the logical field "reserved" to be un-initalized (neither TRUE or FALSE).

tbl.change_begin()
tbl.field_blank("reserved")
tbl.change_end(.T.)

See Also